checksum - определение. Что такое checksum
Diclib.com
Словарь ChatGPT
Введите слово или словосочетание на любом языке 👆
Язык:

Перевод и анализ слов искусственным интеллектом ChatGPT

На этой странице Вы можете получить подробный анализ слова или словосочетания, произведенный с помощью лучшей на сегодняшний день технологии искусственного интеллекта:

  • как употребляется слово
  • частота употребления
  • используется оно чаще в устной или письменной речи
  • варианты перевода слова
  • примеры употребления (несколько фраз с переводом)
  • этимология

Что (кто) такое checksum - определение

SMALL-SIZE DATUM COMPUTED FROM AN ARBITRARY BLOCK OF DIGITAL DATA FOR THE PURPOSE OF DETECTING ERRORS
Check sum; Check-sum; Checksums; Integrity check value; Checksun; ICV - Integrity Check Value; Checksum algorithm; Header checksum; Modular sum; Fuzzy checksum; Checksum function
  • Effect of a typical checksum function (the Unix<code>[[cksum]]</code> utility)
Найдено результатов: 20
checksum         
<storage, communications> A computed value which depends on the contents of a block of data and which is transmitted or stored along with the data in order to detect corruption of the data. The receiving system recomputes the checksum based upon the received data and compares this value with the one sent with the data. If the two values are the same, the receiver has some confidence that the data was received correctly. The checksum may be 8 bits (modulo 256 sum), 16, 32, or some other size. It is computed by summing the bytes or words of the data block ignoring overflow. The checksum may be negated so that the total of the data words plus the checksum is zero. Internet packets use a 32-bit checksum. See also digital signature, cyclic redundancy check. (1996-03-01)
checksum         
¦ noun a digit representing the sum of the correct digits in a piece of data, against which comparisons can be made to detect errors.
Checksum         
A checksum is a small-sized block of data derived from another block of digital data for the purpose of detecting errors that may have been introduced during its transmission or storage. By themselves, checksums are often used to verify data integrity but are not relied upon to verify data authenticity.
Fletcher's checksum         
ERROR DETECTION ALGORITHM
Fletcher checksum; Fletcher-16; Fletcher-32
The Fletcher checksum is an algorithm for computing a position-dependent checksum devised by John G. Fletcher (1934–2012) at Lawrence Livermore Labs in the late 1970s.
Internet checksum         
MECHANISM TO DETECT CORRUPTION IN THE HEADER OF AN IPV4 PACKET
IPv4 header checksum
The Internet checksum, also called the IPv4 header checksum is a checksum used in version 4 of the Internet Protocol (IPv4) to detect corruption in the header of IPv4 packets. It is carried in the IP packet header, and represents the 16-bit result of summation of the header words.
IPv4 header checksum         
MECHANISM TO DETECT CORRUPTION IN THE HEADER OF AN IPV4 PACKET
IPv4 header checksum
The Internet Checksum, also called the IPv4 header checksum is a checksum used in version 4 of the Internet Protocol (IPv4) to detect corruption in the header of IPv4 packets. It is carried in the IP packet header, and represents the 16-bit result of summation of the header words.
BSD checksum         
LEGACY CHECKSUM ALGORITHM
The BSD checksum algorithm was a commonly used, legacy checksum algorithm. It has been implemented in old BSD and is also available through the sum command line utility.
Rolling hash         
HASH FUNCTION WHERE THE INPUT IS HASHED IN A WINDOW THAT MOVES THROUGH THE INPUT
Rolling checksum; Rolling hashing; Buzhash; Content-Defined Chunking; FastCDC; Computational complexity of rolling hash functions
A rolling hash (also known as recursive hashing or rolling checksum) is a hash function where the input is hashed in a window that moves through the input.
Key checksum value         
THE CHECKSUM OF A CRYPTOGRAPHIC KEY
KCV
In cryptography, a Key Checksum Value (KCV) is the checksum of a cryptographic key. It is used to validate the key integrity or compare keys without knowing their actual values.
Adler-32         
32-BIT HASH ALGORITHM USED TO DETECT ACCIDENTAL DATA CORRUPTION
Adler32; Adler checksum; Adlers checksum; ADLER32; Adler 32
Adler-32 is a checksum algorithm written by Mark Adler in 1995, modifying Fletcher's checksum. Compared to a cyclic redundancy check of the same length, it trades reliability for speed (preferring the latter).

Википедия

Checksum

A checksum is a small-sized block of data derived from another block of digital data for the purpose of detecting errors that may have been introduced during its transmission or storage. By themselves, checksums are often used to verify data integrity but are not relied upon to verify data authenticity.

The procedure which generates this checksum is called a checksum function or checksum algorithm. Depending on its design goals, a good checksum algorithm usually outputs a significantly different value, even for small changes made to the input. This is especially true of cryptographic hash functions, which may be used to detect many data corruption errors and verify overall data integrity; if the computed checksum for the current data input matches the stored value of a previously computed checksum, there is a very high probability the data has not been accidentally altered or corrupted.

Checksum functions are related to hash functions, fingerprints, randomization functions, and cryptographic hash functions. However, each of those concepts has different applications and therefore different design goals. For instance, a function returning the start of a string can provide a hash appropriate for some applications but will never be a suitable checksum. Checksums are used as cryptographic primitives in larger authentication algorithms. For cryptographic systems with these two specific design goals, see HMAC.

Check digits and parity bits are special cases of checksums, appropriate for small blocks of data (such as Social Security numbers, bank account numbers, computer words, single bytes, etc.). Some error-correcting codes are based on special checksums which not only detect common errors but also allow the original data to be recovered in certain cases.